#donation-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}


#floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    background-color: #3498db;

    color: #fff;
    border: none;
    border-radius: 10px; 
    padding: 10px 20px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    
}

#floating-button:hover {
    background-color: #064e7f;
}

#floating-button a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Optional: Remove underline */
    color: #ffffff; /* Optional: Set the text color */
}

#floating-button span {
    margin-left: 8px; /* Adjust the spacing between the icon and text */
}

.small-icon {
    width: 30px;
    height: auto;
}

.button-text {
    font-size: 16px; /* Set the font size of the text */
}